home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Interactive CD Sampler / Microsoft Interactive CD Sampler.iso / DEMOS / GREET / GREETS2.DIR / Internal_1.ls < prev    next >
Encoding:
Text File  |  1996-08-01  |  547 b   |  21 lines

  1. on startMovie
  2.   global gRewind, gTimeList
  3.   set gTimeList to list(13, 203, 376, 644, 974, 1063, 1270, 1474, 1728, 2078, 2354, 2561, 3055, 3427, 3554, 4369, 4468, 5060, 6100, 6200)
  4.   preloadMember(member "bkgdmsic.aif")
  5.   set gRewind to 0
  6.   puppetSound(2, "bkgdmsic.aif")
  7.   updateStage()
  8.   set the idleHandlerPeriod to 120
  9.   set the searchPath to list(the moviePath & "SOUNDS")
  10. end
  11.  
  12. on idle
  13.   if the frame < 126 then
  14.     if not soundBusy(2) then
  15.       puppetSound(0)
  16.       puppetSound(2, "bkgdmsic.aif")
  17.       updateStage()
  18.     end if
  19.   end if
  20. end
  21.